home *** CD-ROM | disk | FTP | other *** search
- #include "msmouse.h"
-
- const MouseCursor ArrowCursor = {
- { 0, 0 }, // Set hot spot to tip of arrow
- { 0x3FFF,0x1FFF,0x0FFF,0x07FF, // Screen mask
- 0x03FF,0x01FF,0x00FF,0x007F,
- 0x003F,0x00FF,0x01FF,0x10FF,
- 0x30FF,0xF87F,0xF87F,0xFC3F },
- { 0x0000,0x4000,0x6000,0x7000, // Cursor mask
- 0x7800,0x7C00,0x7E00,0x7F00,
- 0x7F80,0x7E00,0x7C00,0x4600,
- 0x0600,0x0300,0x0300,0x0180 }
- };
-
- const MouseCursor HandCursor = {
- { 4, 0 }, // Hot spot at tip of pointing finger
- { 0xF3FF,0xE1FF,0xE1FF,0xE1FF, // Screen mask
- 0xE001,0xE000,0xE000,0xE000,
- 0x8000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x8001,0xC003 },
- { 0x0C00,0x1200,0x1200,0x1200, // Cursor mask
- 0x13FE,0x1249,0x1249,0x1249,
- 0x7249,0x9001,0x9001,0x9001,
- 0x8001,0x8001,0x4002,0x3FFC}
- };
-
- const MouseCursor LeftRightCursor = {
- { 8, 8 }, // Hot spot in middle of arrow
- { 0xffff,0xffff,0xfbdf,0xf3cf, // Screen mask
- 0xe3c7,0xc003,0x8001,0x0000,
- 0x8001,0xc003,0xe3c7,0xf3cf,
- 0xfbdf,0xffff,0xffff,0xffff },
- { 0x0000,0x0000,0x0420,0x0c30, // Cursor mask
- 0x1428,0x27e4,0x4002,0x8001,
- 0x4002,0x27e4,0x1428,0x0c30,
- 0x0420,0x0000,0x0000,0x0000 }
- };
-
- const MouseCursor UpDownCursor = {
- { 8, 8 }, // Hot spot in middle of arrow
- { 0xfeff,0xfcff,0xf83f,0xf01f, // Screen mask
- 0xe00f,0xc007,0xf83f,0xf83f,
- 0xf83f,0xf83f,0xc007,0xe00f,
- 0xf01f,0xf83f,0xfc7f,0xfeff },
- { 0x0100,0x0280,0x0440,0x0820, // Cursor mask
- 0x1010,0x3c78,0x0440,0x0440,
- 0x0440,0x0440,0x3c78,0x1010,
- 0x0820,0x0440,0x0280,0x0100 }
- };
-
-
-